Don't attempt to create paravirtualized devices for VMX domains for now.
Signed-off-by: Arun Sharma <arun.sharma@intel.com>
for ctrl in self.getDeviceControllers():
ctrl.initController(reboot=True)
else:
- self.create_configured_devices()
+ if self.image.ostype != 'vmx':
+ self.create_configured_devices()
if not self.device_model_pid:
self.device_model_pid = self.image.createDeviceModel()
"""
self.configure_fields()
self.create_devices()
- self.create_blkif()
+ if self.image.ostype != 'vmx':
+ self.create_blkif()
def create_blkif(self):
"""Create the block device interface (blkif) for the vm.